chore(deps): bump trufflesecurity/trufflehog from 3.93.4 to 3.93.6#746
Open
dependabot[bot] wants to merge 4 commits intomasterfrom
Open
chore(deps): bump trufflesecurity/trufflehog from 3.93.4 to 3.93.6#746dependabot[bot] wants to merge 4 commits intomasterfrom
dependabot[bot] wants to merge 4 commits intomasterfrom
Conversation
Bumps [trufflesecurity/trufflehog](https://github.com/trufflesecurity/trufflehog) from 3.93.4 to 3.93.6. - [Release notes](https://github.com/trufflesecurity/trufflehog/releases) - [Commits](trufflesecurity/trufflehog@v3.93.4...v3.93.6) --- updated-dependencies: - dependency-name: trufflesecurity/trufflehog dependency-version: 3.93.6 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Replace duplicate CSV escape functions in audit export routes with the shared escapeCSVField utility from @pagespace/lib/content. This adds formula injection protection (=, +, -, @ prefixes) to the admin audit-logs export which was previously missing it. Also cleans up the integration audit log UI: extract SuccessFilter type, remove redundant formatDateShort wrapper, and extract filtersToSearchParams.
The MCP auth addition to the tasks route imported checkMCPPageScope but the test mock for @/lib/auth did not include it, causing CI unit test failures.
The test's beforeEach creates a user then immediately creates a session. With parallel test files sharing the connection pool, a TOCTOU race can cause the session INSERT to hit a different pool connection where the user commit isn't yet visible, triggering an FK constraint violation. - Add retry loop (3 attempts) around sessionService.createSession - Clean up sessions before users in afterEach to respect FK ordering
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
checkMCPPageScope)checkMCPPageScopemock to tasks route testsChanges
Security
escapeCSVFieldutilityIntegrations
ok: false)Code Quality
audit-filters.tsmodulegenerateCSVutility instead of hand-rolled CSV escapingFiltersState.successtyped as union instead of raw stringHow to Validate
pnpm test:unit— all tests should passcd packages/lib && npx vitest run src/integrations/cd apps/web && npx vitest run "tasks/__tests__/route"apps/web/src/app/api/drives/[driveId]/integrations/audit/export/route.ts